home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src / htsweb.c < prev    next >
C/C++ Source or Header  |  2006-04-09  |  21KB  |  707 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: webhttrack.c routines                                  */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. #include <stdio.h>
  38. #include <stdlib.h>
  39. #include <string.h>
  40. #include <time.h>
  41. #ifdef HAVE_SYS_TYPES_H
  42. #include <sys/types.h>
  43. #endif
  44. #ifdef HAVE_SYS_STAT_H
  45. #include <sys/stat.h>
  46. #endif
  47. #ifdef HAVE_UNISTD_H
  48. #include <unistd.h>
  49. #endif
  50. #include <ctype.h>
  51. #ifndef _WIN32
  52. #include <signal.h>
  53. #endif
  54. // htswrap_add
  55. #include "htsglobal.h"
  56. #include "htswrap.h"
  57. #include "httrack-library.h"
  58.  
  59. /* Threads */
  60. #include "htsthread.h"
  61.  
  62. /* External modules */
  63. #include "htsinthash.c"
  64. #include "htsmd5.c"
  65. #include "md5.c"
  66.  
  67. #include "htsserver.h"
  68. #include "htsweb.h"
  69.  
  70. #if USE_BEGINTHREAD==0
  71. #error fatal: no threads support
  72. #endif
  73.  
  74. #if HTS_WIN
  75. #ifndef __cplusplus
  76. // DOS
  77. #include <process.h>    /* _beginthread, _endthread */
  78. #endif
  79. #else
  80. #endif
  81.  
  82. static PTHREAD_LOCK_TYPE refreshMutex;
  83.  
  84. static int help_server(char* dest_path, int defaultPort);
  85. extern int commandRunning;
  86. extern int commandEnd;
  87. extern int commandReturn;
  88. extern int commandEndRequested;
  89. extern char* commandReturnMsg;
  90. extern char* commandReturnCmdl;
  91.  
  92. static void htsweb_sig_brpipe( int code ) {
  93.   /* ignore */
  94. }
  95.  
  96. int main(int argc, char* argv[])
  97. {
  98.   int i;
  99.   int ret = 0;
  100.   int defaultPort = 0;
  101.   printf("Initialzing the server..\n");
  102.  
  103. #ifdef _WIN32
  104.   {
  105.     WORD   wVersionRequested;   // requested version WinSock API
  106.     WSADATA wsadata;            // Windows Sockets API data
  107.     int stat;
  108.     wVersionRequested = 0x0101;
  109.     stat = WSAStartup( wVersionRequested, &wsadata );
  110.     if (stat != 0) {
  111.       fprintf(stderr, "Winsock not found!\n");
  112.       return -1;
  113.     } else if (LOBYTE(wsadata.wVersion) != 1  && HIBYTE(wsadata.wVersion) != 1) {
  114.       fprintf(stderr, "WINSOCK.DLL does not support version 1.1\n");
  115.       WSACleanup();
  116.       return -1;
  117.     }
  118.   }
  119. #endif
  120.  
  121.   if (argc < 2 || (argc % 2) != 0) {
  122.     fprintf(stderr, "** Warning: use the webhttrack frontend if available\n");
  123.     fprintf(stderr, "usage: %s [--port <port>] <path-to-html-root-dir> [key value [key value]..]\n", argv[0]);
  124.     fprintf(stderr, "example: %s /usr/share/httrack/\n", argv[0]);
  125.     return 1;
  126.   }
  127.  
  128.   /* init and launch */
  129.   hts_init();
  130.   htslang_init();
  131.   webhttrack_lock(-999);
  132.  
  133.   /* set general keys */
  134. #ifdef HTS_ETCPATH
  135.   smallserver_setkey("ETCPATH", HTS_ETCPATH);
  136. #endif
  137. #ifdef HTS_BINPATH
  138.   smallserver_setkey("BINPATH", HTS_BINPATH);
  139. #endif
  140. #ifdef HTS_LIBPATH
  141.   smallserver_setkey("LIBPATH", HTS_LIBPATH);
  142. #endif
  143. #ifdef HTS_PREFIX
  144.   smallserver_setkey("PREFIX", HTS_PREFIX);
  145. #endif
  146. #ifdef HTS_HTTRACKCNF
  147.   smallserver_setkey("HTTRACKCNF", HTS_HTTRACKCNF);
  148. #endif
  149. #ifdef HTS_HTTRACKDIR
  150.   smallserver_setkey("HTTRACKDIR", HTS_HTTRACKDIR);
  151. #endif
  152. #ifdef HTS_INET6
  153.   smallserver_setkey("INET6", "1");
  154. #endif
  155. #ifdef HTS_USEOPENSSL
  156.   smallserver_setkey("USEOPENSSL", "1");
  157. #endif
  158. #ifdef HTS_DLOPEN
  159.   smallserver_setkey("DLOPEN", "1");
  160. #endif
  161. #ifdef HTS_USESWF
  162.   smallserver_setkey("USESWF", "1");
  163. #endif
  164. #ifdef HTS_USEZLIB
  165.   smallserver_setkey("USEZLIB", "1");
  166. #endif
  167. #ifdef _WIN32
  168.   smallserver_setkey("WIN32", "1");
  169. #endif
  170.   smallserver_setkey("HTTRACK_VERSION", HTTRACK_VERSION);
  171.   smallserver_setkey("HTTRACK_VERSIONID", HTTRACK_VERSIONID);
  172.   smallserver_setkey("HTTRACK_AFF_VERSION", HTTRACK_AFF_VERSION);
  173.   {
  174.     char tmp[32];
  175.     sprintf(tmp, "%d", HTS_PLATFORM);
  176.     smallserver_setkey("HTS_PLATFORM", tmp);
  177.   }
  178.   smallserver_setkey("HTTRACK_WEB", HTTRACK_WEB); 
  179.  
  180.   /* protected session-id */
  181.   {
  182.     char buff[1024];
  183.     char digest[32 + 2];
  184.     srand(time(NULL));
  185.     sprintf(buff, "%d-%d", (int)time(NULL), (int)rand());
  186.     domd5mem(buff,strlen(buff),digest,1);
  187.     smallserver_setkey("sid", digest);
  188.     smallserver_setkey("_sid", digest);
  189.   }
  190.  
  191.   /* set commandline keys */
  192.     for(i = 2 ; i < argc ; i += 2) {
  193.         if (strcmp(argv[i], "--port") == 0) {
  194.             if (sscanf(argv[i + 1], "%d", &defaultPort) != 1 || defaultPort < 0 || defaultPort >= 65535 ) {
  195.                 fprintf(stderr, "couldn't set the port number to %d\n", argv[i + 1]);
  196.                 return -1;
  197.             }
  198.         } else {
  199.             smallserver_setkey(argv[i], argv[i + 1]);
  200.         }
  201.   }
  202.  
  203.   /* sigpipe */
  204. #ifndef _WIN32
  205.   signal( SIGPIPE , htsweb_sig_brpipe );   // broken pipe (write into non-opened socket)
  206. #endif
  207.  
  208.   /* launch */
  209.   ret = help_server(argv[1], defaultPort);
  210.  
  211.   htsthread_wait();
  212.   hts_uninit();
  213.  
  214. #ifdef _WIN32
  215.   WSACleanup();
  216. #endif
  217.  
  218.   return ret;
  219. }
  220.  
  221. static int webhttrack_runmain(int argc, char** argv);
  222. static PTHREAD_TYPE PTHREAD_TYPE_FNC back_launch_cmd( void* pP ) {
  223.   char* cmd = (char*) pP;
  224.   char** argv = (char**) malloct(1024 * sizeof(char*));
  225.   int argc = 0;
  226.   int i = 0;
  227.   int g = 0;
  228.  
  229.   /* copy commandline */
  230.   if (commandReturnCmdl)
  231.     free(commandReturnCmdl);
  232.   commandReturnCmdl = strdup(cmd);
  233.  
  234.   /* split */
  235.   argv[0]="webhttrack";
  236.   argv[1]=cmd;
  237.   argc++;    
  238.   i = 0;
  239.   while(cmd[i]) {
  240.     if (cmd[i] == '\t' || cmd[i] == '\r' || cmd[i] == '\n') {
  241.       cmd[i] = ' ';
  242.     }
  243.     i++;
  244.   }
  245.   i = 0;
  246.   while(cmd[i])  {
  247.     if(cmd[i]=='\"') g=!g;
  248.     if(cmd[i]==' ') {
  249.       if(!g){
  250.         cmd[i]='\0';
  251.         argv[argc++]=cmd+i+1;
  252.       }
  253.     }  
  254.     i++;
  255.   }
  256.   
  257.   /* run */
  258.   commandReturn = webhttrack_runmain(argc, argv);
  259.   if (commandReturn) {
  260.     if (commandReturnMsg)
  261.       free(commandReturnMsg);
  262.     commandReturnMsg = strdup(hts_errmsg());
  263.   }
  264.  
  265.   /* okay */
  266.   commandRunning = 0;
  267.  
  268.   /* finished */
  269.   commandEnd = 1;
  270.  
  271.   /* free */
  272.   free(cmd);
  273.   freet(argv);
  274.   return PTHREAD_RETURN;
  275. }
  276.  
  277. void webhttrack_main(char* cmd) {
  278.   commandRunning = 1;
  279.   (void)hts_newthread(back_launch_cmd, 0, (void*) strdup(cmd));
  280. }
  281.  
  282. /* Internal locking */
  283. HTSEXT_API int htsSetLock(PTHREAD_LOCK_TYPE * hMutex,int lock);
  284.  
  285. void webhttrack_lock(int lock) {
  286.   htsSetLock(&refreshMutex, lock);
  287. }
  288.  
  289. static int webhttrack_runmain(int argc, char** argv) {
  290.   hts_init();
  291.   htswrap_add("init",htsshow_init);
  292.   htswrap_add("free",htsshow_uninit);
  293.   htswrap_add("start",htsshow_start);
  294.   htswrap_add("change-options",htsshow_chopt);
  295.   htswrap_add("end",htsshow_end);
  296.   htswrap_add("preprocess-html",htsshow_preprocesshtml);
  297.   htswrap_add("check-html",htsshow_checkhtml);
  298.   htswrap_add("loop",htsshow_loop);
  299.   htswrap_add("query",htsshow_query);
  300.   htswrap_add("query2",htsshow_query2);
  301.   htswrap_add("query3",htsshow_query3);
  302.   htswrap_add("check-link",htsshow_check);
  303.   htswrap_add("check-mime",htsshow_check_mime);
  304.   htswrap_add("pause",htsshow_pause);
  305.   htswrap_add("save-file",htsshow_filesave);
  306.   htswrap_add("save-file2",htsshow_filesave2);
  307.   htswrap_add("link-detected",htsshow_linkdetected);
  308.   htswrap_add("link-detected2",htsshow_linkdetected2);
  309.   htswrap_add("transfer-status",htsshow_xfrstatus);
  310.   htswrap_add("save-name",htsshow_savename);
  311.   htsthread_wait_n(1);
  312.   hts_uninit();
  313.   return hts_main(argc,argv);
  314.  
  315. }
  316.  
  317. static int help_server(char* dest_path, int defaultPort) {
  318.   int returncode = 0;
  319.   char adr_prox[HTS_URLMAXSIZE*2];
  320.   int port_prox;
  321.   T_SOC soc=smallserver_init_std(&port_prox, adr_prox, defaultPort);
  322.   if (soc!=INVALID_SOCKET) {
  323.     char url[HTS_URLMAXSIZE*2];
  324.     char method[32];
  325.     char data[32768];
  326.     url[0]=method[0]=data[0]='\0';
  327.     //
  328.     printf("Okay, temporary server installed.\nThe URL is:\n");
  329.     printf("URL=http://%s:%d/\n", adr_prox, port_prox);
  330. #ifndef _WIN32
  331.     {
  332.       pid_t pid = getpid();
  333.       printf("PID=%d\n", (int)pid);
  334.     }
  335. #endif
  336.     fflush(stdout);
  337.     fflush(stderr);
  338.     //
  339.     if (!smallserver(soc,url,method,data,dest_path)) {
  340.       fprintf(stderr, "Unable to create the server: %s\n", strerror(errno));
  341. #ifdef _WIN32
  342.       closesocket(soc);
  343. #else
  344.       close(soc);
  345. #endif
  346.       printf("Done\n");
  347.       returncode = 1;
  348.     } else {
  349.       returncode = 0;
  350.     }
  351.   } else {
  352.     fprintf(stderr, "Unable to initialize a temporary server (no remaining port)\n");
  353.     returncode = 1;
  354.   }
  355.   printf("EXITED\n");
  356.   fflush(stdout);
  357.   fflush(stderr);
  358.   return returncode;
  359. }
  360.  
  361.  
  362. /* CALLBACK FUNCTIONS */
  363.  
  364. /* Initialize the Winsock */
  365. void __cdecl htsshow_init(void) {
  366. }
  367. void __cdecl htsshow_uninit(void) {
  368. }
  369. int __cdecl htsshow_start(httrackp* opt) {
  370.   return 1; 
  371. }
  372. int __cdecl htsshow_chopt(httrackp* opt) {
  373.   return htsshow_start(opt);
  374. }
  375. int  __cdecl htsshow_end(void) { 
  376.   return 1; 
  377. }
  378. int __cdecl htsshow_preprocesshtml(char** html,int* len,char* url_adresse,char* url_fichier) {
  379.   return 1;
  380. }
  381. int __cdecl htsshow_checkhtml(char* html,int len,char* url_adresse,char* url_fichier) {
  382.   return 1;
  383. }
  384. int __cdecl htsshow_loop(lien_back* back,int back_max,int back_index,int lien_n,int lien_tot,int stat_time, hts_stat_struct* stats) {    // appelΘ α chaque boucle de HTTrack
  385.   static TStamp prev_mytime=0; /* ok */
  386.   static t_InpInfo SInfo; /* ok */
  387.   //
  388.   TStamp mytime;
  389.   long int rate=0;
  390.   //
  391.   int stat_written=-1;
  392.   int stat_updated=-1;
  393.   int stat_errors=-1;
  394.   int stat_warnings=-1;
  395.   int stat_infos=-1;
  396.   int nbk=-1;
  397.   LLint nb=-1;
  398.   int stat_nsocket=-1;
  399.   LLint stat_bytes=-1;
  400.   LLint stat_bytes_recv=-1;
  401.   int irate=-1;
  402.   //
  403.   char st[256];
  404.  
  405.   /* Exit now */
  406.   if (commandEndRequested == 2)
  407.     return 0;
  408.  
  409.   /* Lock */
  410.   webhttrack_lock(1);
  411.  
  412.   if (stats) {
  413.     stat_written=stats->stat_files;
  414.     stat_updated=stats->stat_updated_files;
  415.     stat_errors=stats->stat_errors;
  416.     stat_warnings=stats->stat_warnings;
  417.     stat_infos=stats->stat_infos;
  418.     nbk=stats->nbk;
  419.     stat_nsocket=stats->stat_nsocket;
  420.     irate=(int)stats->rate;
  421.     nb=stats->nb;
  422.     stat_bytes=stats->nb;
  423.     stat_bytes_recv=stats->HTS_TOTAL_RECV;
  424.   }
  425.   
  426.   mytime=mtime_local();
  427.   if ((stat_time>0) && (stat_bytes_recv>0))
  428.     rate=(int)(stat_bytes_recv/stat_time);
  429.   else
  430.     rate=0;    // pas d'infos
  431.   
  432.   /* Infos */
  433.   if (stat_bytes>=0) SInfo.stat_bytes=stat_bytes;      // bytes
  434.   if (stat_time>=0) SInfo.stat_time=stat_time;         // time
  435.   if (lien_tot>=0) SInfo.lien_tot=lien_tot; // nb liens
  436.   if (lien_n>=0) SInfo.lien_n=lien_n;       // scanned
  437.   SInfo.stat_nsocket=stat_nsocket;          // socks
  438.   if (rate>0)  SInfo.rate=rate;                // rate
  439.   if (irate>=0) SInfo.irate=irate;             // irate
  440.   if (SInfo.irate<0) SInfo.irate=SInfo.rate;
  441.   if (nbk>=0) SInfo.stat_back=nbk;
  442.   if (stat_written>=0) SInfo.stat_written=stat_written;
  443.   if (stat_updated>=0) SInfo.stat_updated=stat_updated;
  444.   if (stat_errors>=0)  SInfo.stat_errors=stat_errors;
  445.   if (stat_warnings>=0)  SInfo.stat_warnings=stat_warnings;
  446.   if (stat_infos>=0)  SInfo.stat_infos=stat_infos;
  447.   
  448.   
  449.   st[0]='\0';
  450.   qsec2str(st,stat_time);
  451.   
  452.   /* Set keys */
  453.   smallserver_setkeyint("info.stat_bytes", SInfo.stat_bytes);
  454.   smallserver_setkeyint("info.stat_time", SInfo.stat_time);
  455.   smallserver_setkeyint("info.lien_tot", SInfo.lien_tot);
  456.   smallserver_setkeyint("info.lien_n", SInfo.lien_n);
  457.   smallserver_setkeyint("info.stat_nsocket", SInfo.stat_nsocket);
  458.   smallserver_setkeyint("info.rate", SInfo.rate);
  459.   smallserver_setkeyint("info.irate", SInfo.irate);
  460.   smallserver_setkeyint("info.stat_back", SInfo.stat_back);
  461.   smallserver_setkeyint("info.stat_written", SInfo.stat_written);
  462.   smallserver_setkeyint("info.stat_updated", SInfo.stat_updated);
  463.   smallserver_setkeyint("info.stat_errors", SInfo.stat_errors);
  464.   smallserver_setkeyint("info.stat_warnings", SInfo.stat_warnings);
  465.   smallserver_setkeyint("info.stat_infos", SInfo.stat_infos);
  466.   /* */
  467.   smallserver_setkey("info.stat_time_str", st);
  468.   
  469.   if ( ((mytime - prev_mytime)>100) || ((mytime - prev_mytime)<0) ) {
  470.     prev_mytime=mytime;
  471.     
  472.     
  473.     // parcourir registre des liens
  474.     if (back_index>=0 && back_max > 0) {  // seulement si index passΘ
  475.       int j,k;
  476.       int index=0;
  477.       int ok=0;         // idem
  478.       int l;            // idem
  479.       //
  480.       t_StatsBuffer StatsBuffer[NStatsBuffer];
  481.       
  482.       {
  483.         int i;
  484.         for(i=0;i<NStatsBuffer;i++) {
  485.           strcpybuff(StatsBuffer[i].state,"");
  486.           strcpybuff(StatsBuffer[i].name,"");
  487.           strcpybuff(StatsBuffer[i].file,"");
  488.           strcpybuff(StatsBuffer[i].url_sav,"");
  489.           StatsBuffer[i].back=0;
  490.           StatsBuffer[i].size=0;
  491.           StatsBuffer[i].sizetot=0;
  492.         }
  493.       }
  494.       for(k=0;k<2;k++) {    // 0: lien en cours 1: autres liens
  495.         for(j=0;(j<3) && (index<NStatsBuffer);j++) {  // passe de prioritΘ
  496.           int _i;
  497.           for(_i=0+k;(_i< max(back_max*k,1) ) && (index<NStatsBuffer);_i++) {  // no lien
  498.             int i=(back_index+_i)%back_max;    // commencer par le "premier" (l'actuel)
  499.             if (back[i].status>=0) {     // signifie "lien actif"
  500.               // int ok=0;  // OPTI
  501.               ok=0;
  502.               switch(j) {
  503.               case 0:     // prioritaire
  504.                 if ((back[i].status>0) && (back[i].status<99)) {
  505.                   strcpybuff(StatsBuffer[index].state,"receive"); ok=1;
  506.                 }
  507.                 break;
  508.               case 1:
  509.                 if (back[i].status==99) {
  510.                   strcpybuff(StatsBuffer[index].state,"request"); ok=1;
  511.                 }
  512.                 else if (back[i].status==100) {
  513.                                     strcpybuff(StatsBuffer[index].state,"connect"); ok=1;
  514.                                 }
  515.                                 else if (back[i].status==101) {
  516.                                     strcpybuff(StatsBuffer[index].state,"search"); ok=1;
  517.                                 }
  518.                                 else if (back[i].status==1000) {    // ohh le beau ftp
  519.                                     char proto[] = "ftp";
  520.                                     if (back[i].url_adr[0]) {
  521.                                         char* ep = strchr(back[i].url_adr, ':');
  522.                                         char* eps = strchr(back[i].url_adr, '/');
  523.                                         int count;
  524.                                         if (ep != NULL && ep < eps && (count = (ep - back[i].url_adr) ) < 4) {
  525.                                             proto[0] = '\0';
  526.                                             strncat(proto, back[i].url_adr, count);
  527.                                         }
  528.                                     }
  529.                                     sprintf(StatsBuffer[index].state,"%s: %s",proto,back[i].info); ok=1;
  530.                                 }
  531.                                 break;
  532.                             default:
  533.                                 if (back[i].status==0) {  // prΩt
  534.                   if ((back[i].r.statuscode==200)) {
  535.                     strcpybuff(StatsBuffer[index].state,"ready"); ok=1;
  536.                   }
  537.                   else if ((back[i].r.statuscode>=100) && (back[i].r.statuscode<=599)) {
  538.                     char tempo[256]; tempo[0]='\0';
  539.                     infostatuscode(tempo,back[i].r.statuscode);
  540.                     strcpybuff(StatsBuffer[index].state,tempo); ok=1;
  541.                   }
  542.                   else {
  543.                     strcpybuff(StatsBuffer[index].state,"error"); ok=1;
  544.                   }
  545.                 }
  546.                 break;
  547.               }
  548.               
  549.               if (ok) {
  550.                 char s[HTS_URLMAXSIZE*2];
  551.                 //
  552.                 StatsBuffer[index].back=i;        // index pour + d'infos
  553.                 //
  554.                 s[0]='\0';
  555.                 strcpybuff(StatsBuffer[index].url_sav,back[i].url_sav);   // pour cancel
  556.                 if (strcmp(back[i].url_adr,"file://"))
  557.                   strcatbuff(s,back[i].url_adr);
  558.                 else
  559.                   strcatbuff(s,"localhost");
  560.                 if (back[i].url_fil[0]!='/')
  561.                   strcatbuff(s,"/");
  562.                 strcatbuff(s,back[i].url_fil);
  563.                 
  564.                 StatsBuffer[index].file[0]='\0';
  565.                 {
  566.                   char* a=strrchr(s,'/');
  567.                   if (a) {
  568.                     strncatbuff(StatsBuffer[index].file,a,200);
  569.                     *a='\0';
  570.                   }
  571.                 }
  572.                 
  573.                 if ((l=strlen(s))<MAX_LEN_INPROGRESS)
  574.                   strcpybuff(StatsBuffer[index].name,s);
  575.                 else {
  576.                   // couper
  577.                   StatsBuffer[index].name[0]='\0';
  578.                   strncatbuff(StatsBuffer[index].name,s,MAX_LEN_INPROGRESS/2-2);
  579.                   strcatbuff(StatsBuffer[index].name,"...");
  580.                   strcatbuff(StatsBuffer[index].name,s+l-MAX_LEN_INPROGRESS/2+2);
  581.                 }
  582.                 
  583.                 if (back[i].r.totalsize>0) {  // taille prΘdΘfinie
  584.                   StatsBuffer[index].sizetot=back[i].r.totalsize;
  585.                   StatsBuffer[index].size=back[i].r.size;
  586.                 } else {  // pas de taille prΘdΘfinie
  587.                   if (back[i].status==0) {  // prΩt
  588.                     StatsBuffer[index].sizetot=back[i].r.size;
  589.                     StatsBuffer[index].size=back[i].r.size;
  590.                   } else {
  591.                     StatsBuffer[index].sizetot=8192;
  592.                     StatsBuffer[index].size=(back[i].r.size % 8192);
  593.                   }
  594.                 }
  595.                 index++;
  596.               }
  597.             }
  598.           }
  599.         }
  600.       }
  601.  
  602.       /* Display current job */
  603.       {
  604.         int parsing=0;
  605.         if (commandEndRequested)
  606.           smallserver_setkey("info.currentjob", "finishing pending transfers - Select [Cancel] to stop now!");
  607.         else if (!(parsing=hts_is_parsing(-1)))
  608.           smallserver_setkey("info.currentjob", "receiving files");
  609.         else {
  610.           char tmp[1024];
  611.           tmp[0] = '\0';
  612.           switch(hts_is_testing()) {
  613.           case 0:
  614.             sprintf(tmp, "parsing HTML file (%d%%)",parsing);
  615.             break;
  616.           case 1:
  617.             sprintf(tmp, "parsing HTML file: testing links (%d%%)",parsing);
  618.             break;
  619.           case 2:
  620.             sprintf(tmp, "purging files");
  621.             break;
  622.           case 3:
  623.             sprintf(tmp, "loading cache");
  624.             break;
  625.           case 4:
  626.             sprintf(tmp, "waiting (scheduler)");
  627.             break;
  628.           case 5:
  629.             sprintf(tmp, "waiting (throttle)");
  630.             break;
  631.           }
  632.           smallserver_setkey("info.currentjob", tmp);
  633.         }
  634.       }
  635.  
  636.       /* Display background jobs */
  637.       {
  638.         int i;
  639.         for(i=0;i<NStatsBuffer;i++) {
  640.           if (strnotempty(StatsBuffer[i].state)) {
  641.             smallserver_setkeyarr("info.state[", i, "]", StatsBuffer[i].state);
  642.             smallserver_setkeyarr("info.name[", i, "]", StatsBuffer[i].name);
  643.             smallserver_setkeyarr("info.file[", i, "]", StatsBuffer[i].file);
  644.             smallserver_setkeyarr("info.size[", i, "]", int2bytes(StatsBuffer[i].size));
  645.             smallserver_setkeyarr("info.sizetot[", i, "]", int2bytes(StatsBuffer[i].sizetot));
  646.             smallserver_setkeyarr("info.url_adr[", i, "]", StatsBuffer[i].url_adr);
  647.             smallserver_setkeyarr("info.url_fil[", i, "]", StatsBuffer[i].url_fil);
  648.             smallserver_setkeyarr("info.url_sav[", i, "]", StatsBuffer[i].url_sav);
  649.           }
  650.         }
  651.       }
  652.  
  653.  
  654.     }   
  655.       
  656.   }
  657.   
  658.   /* UnLock */
  659.   webhttrack_lock(0);
  660.   
  661.   return 1;
  662. }
  663. char* __cdecl htsshow_query(char* question) {
  664.   static char s[]=""; /* ok */
  665.   return s;
  666. }
  667. char* __cdecl htsshow_query2(char* question) {
  668.   static char s[]=""; /* ok */
  669.   return s;
  670. }
  671. char* __cdecl htsshow_query3(char* question) {
  672.   static char s[]=""; /* ok */
  673.   return s;
  674. }
  675. int __cdecl htsshow_check(char* adr,char* fil,int status) {
  676.   return -1;
  677. }
  678. int __cdecl htsshow_check_mime(char* adr,char* fil,char* mime,int status) {
  679.   return -1;
  680. }
  681. void __cdecl htsshow_pause(char* lockfile) {
  682. }
  683. void __cdecl htsshow_filesave(char* file) {
  684. }
  685. void  __cdecl htsshow_filesave2(char* adr, char* fil, char* save, int is_new, int is_modified,int not_updated) {
  686. }
  687. int __cdecl htsshow_linkdetected(char* link) {
  688.   return 1;
  689. }
  690. int __cdecl htsshow_linkdetected2(char* link, char* start_tag) {
  691.   return 1;
  692. }
  693. int __cdecl htsshow_xfrstatus(lien_back* back) {
  694.   return 1;
  695. }
  696. int __cdecl htsshow_savename(char* adr_complete,char* fil_complete,char* referer_adr,char* referer_fil,char* save) {
  697.   return 1;
  698. }
  699. int __cdecl htsshow_sendheader(char* buff, char* adr, char* fil, char* referer_adr, char* referer_fil, htsblk* outgoing) {
  700.   return 1;
  701. }
  702. int __cdecl htsshow_receiveheader(char* buff, char* adr, char* fil, char* referer_adr, char* referer_fil, htsblk* incoming) {
  703.   return 1;
  704. }
  705.  
  706.  
  707.